interface SongPageProps {
  params: {
    slug: string;
  };
}

export default async function SongPage({ params }: SongPageProps) {
  const { slug } = await params;

  // TODO: Fetch the song details from https://apitest.suno.com/api/songs

  // TODO: After 10 seconds, show a modal that prompts the user to sign up.

  return (
    <main className="min-h-screen flex flex-col items-center justify-center p-8">
      <h1 className="text-3xl font-bold mb-6">Song Page for Song ID: {slug}</h1>
    </main>
  );
}
